home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Hardware / PromUpdate-2.3 / Install < prev    next >
Encoding:
Text File  |  2002-10-27  |  2.4 KB  |  124 lines

  1. ;Skrypt instalacyjny oprogramowania do karty Prometeusz
  2. ;Grzegorz "Krashan" Kraszewski
  3. ;$VER: Prometheus Update 2.3 (6.10.2002)
  4.  
  5. (complete 0)
  6. (set #msg_vendorsp "Update the list of existing PCI cards.")
  7. (set #msg_promlib "Update prometheus.library".)
  8. (set #msg_3dfxv "Update Picasso96 Voodoo3 driver.")
  9. (set #msg_prmcard "Update Picasso96 Prometheus driver.")
  10.  
  11.  
  12. (message "Welcome to the Prometheus Update v2.3 install script."
  13.   (all)
  14. )
  15.  
  16. (copylib
  17.   (prompt "Updating prometheus.library.")
  18.   (help "")
  19.   (source "prometheus.library")
  20.   (dest "LIBS:")
  21. )
  22.  
  23. (complete 10)
  24.                   
  25. (if
  26.   (NOT (exists "DEVS:PCI/"))
  27.   (makedir "DEVS:PCI/"
  28.     (prompt "Creating a directory for PCI related stuff in DEVS:.")
  29.   )
  30. )
  31.  
  32. (complete 20)
  33.  
  34. (copyfiles
  35.   (prompt "Updating PCI cards database.")
  36.   (source "vendors.txt")
  37.   (dest "DEVS:PCI/")
  38. )
  39.  
  40. (complete 30)
  41.  
  42. (copylib
  43.   (prompt "Updating Picasso96 Voodoo3 driver.")
  44.   (help "")
  45.   (source "3dfxvoodoo.chip")
  46.   (dest "LIBS:Picasso96/")
  47. )
  48.  
  49. (complete 40)
  50.  
  51. (copylib
  52.   (prompt "Updating Picasso96 Prometheus driver.")
  53.   (help "")
  54.   (source "Prometheus.card")
  55.   (dest "LIBS:Picasso96/")
  56. )
  57.  
  58. (complete 50)
  59.  
  60. (copylib
  61.   (prompt "Updating Picasso96 emulation.library.")
  62.   (help "")
  63.   (source "emulation.library")
  64.   (dest "LIBS:Picasso96/")
  65. )
  66.  
  67. (complete 60)
  68.  
  69. (copylib
  70.   (prompt "Updating Picasso96 fastlayers.library.")
  71.   (help "")
  72.   (source "fastlayers.library")
  73.   (dest "LIBS:Picasso96/")
  74. )
  75.  
  76. (complete 70)
  77.  
  78. (copylib
  79.   (prompt "Updating Picasso96 rtg.library.")
  80.   (help "")
  81.   (source "rtg.library")
  82.   (dest "LIBS:Picasso96/")
  83. )
  84.  
  85. (complete 80)
  86.  
  87. (copylib
  88.   (prompt "Updating PrmScan tool.")
  89.   (help "The tool lists in a console window all PCI boards installed in the system.")
  90.   (source "PrmScan")
  91.   (infos)
  92.   (dest
  93.     (askdir
  94.       (prompt "Select the directory where you want to install the new version of PrmScan. No directory will be created here.")
  95.       (help "Select default if unsure.")
  96.       (default "SYS:Utilities/Prometheus")
  97.       (newpath)
  98.     )
  99.   )
  100. )
  101.  
  102. (complete 90)
  103.       
  104. (copylib
  105.   (prompt "Installing DMAList tool.")
  106.   (help "The tool lists in a console window list of allocated DMA buffers.")
  107.   (source "DMAList")
  108.   (infos)
  109.   (dest
  110.     (askdir
  111.       (prompt "Select the directory where you want to install DMAList. No directory will be created here.")
  112.       (help "Select default if unsure.")
  113.       (default "SYS:Utilities/Prometheus")
  114.       (newpath)
  115.     )
  116.   )
  117. )
  118.  
  119. (complete 100)
  120.  
  121. (set @default-dest "SYS:")
  122.  
  123. (exit)
  124.